home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 4 / FM Towns Free Software Collection 4 - Disc 1.iso / t_os / wstype / source / graph.h < prev    next >
C/C++ Source or Header  |  1991-10-18  |  1KB  |  44 lines

  1. /***   [graph.h]
  2. *
  3. *    For GNU C Compiler (GCC)
  4. *
  5. ***/
  6.  
  7. #include <egb.h>
  8.  
  9. #ifndef EGB_WORK_DEFINED
  10. extern char    EGB_work[1536];
  11. #define EGB_WORK_DEFINED
  12. #endif
  13.  
  14. #define EGB_COL_FORE    0
  15. #define EGB_COL_BACK    1
  16. #define EGB_COL_PAINT    2
  17. #define EGB_COL_TRANS    3
  18.  
  19. #define EGB_DSP_OFFSET    0
  20. #define EGB_DSP_SHIFT    1
  21. #define EGB_DSP_ZOOM    2
  22. #define EGB_DSP_WIDTH    3
  23.  
  24. void EGB_int(void);
  25. void EGB_actPage(int);
  26. int EGB_readactPage(void);
  27. void EGB_cls(int);
  28. void EGB_box(int, int, int, int, int);
  29. void EGB_boxf(int, int, int, int, int, int);
  30. void EGB_pal(int, int, int, int, int);
  31. void EGB_str(const char *, int, int, int);
  32. void EGB_str2(const char *, int, int, int);
  33. void EGB_str3(const char *, int, int, int, int);
  34. void EGB_pointset(int, int, int);
  35. void EGB_get(void *, int, int, int, int);
  36. void EGB_put(int, const void *, int, int, int, int);
  37. void EGB_putC(int, const void *, int, int, int, int, int);
  38. void EGB_line(int, int, int, int, int);
  39. void EGB_rev(int, int, int, int, int);
  40. void EGB_scrl(int, int, int, int, int, int, int);
  41. void EGB_mycopy(int, int, int, int, int, int, int, int);
  42. void EGB_view(int, int, int, int);
  43. void EGB_Hscrl(int, int);
  44.